home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / bbs / rokv102.zip / ROK.ZIP / SAMPLE.BAT < prev    next >
DOS Batch File  |  1996-08-08  |  1KB  |  28 lines

  1. REM ** SAMPLE BATCH FILE FOR SINGLE-LINE BBS **
  2.  
  3. @ECHO OFF                       - No display what is happening.
  4. <drive>:                        - Change to the BBS Drive.
  5. CD\<rokdir>                     - Change Dir to the ROK Directory.
  6. COPY \<bbsdir>\<dropfile>       - Copy Dropfile from BBS Dir into ROK Dir.
  7. NOW_OFF.EXE                     - Turn OnNow Flag off for all players.
  8. ROK.EXE 1                       - Run ROK on node #1.
  9. CD\<bbsdir>                     - Return to the BBS Directory.
  10. EXIT                            - Exit back to the BBS.
  11.  
  12. REM ** SAMPLE BATCH FILE FOR MUTLI-NODE BBS **
  13.  
  14. @ECHO OFF                       - No display what is happening.
  15. <drive>:                        - Change to the BBS Drive.
  16. CD\<rokdir>                     - Change Dir to the ROK Directory.
  17. ROK.EXE * /P<pathtodropfile>    - Execute ROK on a "*" for the node number
  18.                                   (consult your BBS Documentation for info on
  19.                                   how to pass node numbers to command lines).
  20.                                   /P<path> to point ROK to a directory to look
  21.                                   for the dropfile -- must have on multi-node
  22.                                   BBS's.
  23. CD\<bbsdir>                     - Return to the BBS Directory.
  24. EXIT                            - Exit back to the BBS.
  25.  
  26. Devon Brooks - Blazing Fire Software
  27. End of Realm of Kisom v0.95c Sample Batch File.
  28.